adTempus API
ArcanaDevelopment.adTempus.Shared Namespace / Range<T> Class / Contains Method
The value to test against the range.


In This Topic
    Contains Method (Range<T>)
    In This Topic
    Indicates whether the specified value meets the rules for the range
    Syntax
    'Declaration
     
    
    Public Function Contains( _
       ByVal value As T _
    ) As Boolean
    public bool Contains( 
       T value
    )
    public:
    bool Contains( 
       T^ value
    ) 

    Parameters

    value
    The value to test against the range.
    Remarks
    If Negate is false, Contains returns true if Min <= value Min <= Max. If Negate is true, Contains returns true if value < Min and value > Max
    See Also